home *** CD-ROM | disk | FTP | other *** search
/ Champak 120 / Vol 120.iso / games / titans / beastboy.swf / scripts / DefineSprite_230 / frame_1 / DoAction.as
Text File  |  2010-11-09  |  182b  |  11 lines

  1. onenterframe = function()
  2. {
  3.    x = 1 + math.floor(r.energy / r.energymax * 100);
  4.    bar.gotoAndStop(x);
  5.    if(r.energy <= 0)
  6.    {
  7.       bar.gotoAndStop(1);
  8.    }
  9. };
  10. stop();
  11.